home *** CD-ROM | disk | FTP | other *** search
/ CD School House 9 / CD School House 9.0 - Wayzata Technology (1994).iso / pc / dos / networks / tpapi / nwconn.doc < prev    next >
Text File  |  1992-02-10  |  3KB  |  66 lines

  1.                       CONNECTION SERVICES
  2.                       ===================
  3.  
  4.  
  5. AttachToFileServer (ServerName : ObjectNameType;
  6.                     VAR ConnectionID : WORD) : WORD;
  7.   
  8.   Creates an attachment between a workstation and a specified file server.
  9. --------------------------------------------------------------------------------
  10. DetachFromFileServer (ConnectionID : WORD) : WORD;
  11.  
  12.   Logs out the bindery object and detaches the requesting workstation from the
  13.   specified file server.
  14. --------------------------------------------------------------------------------
  15. EnterLoginArea (LoginSubdirectoryName : PathNameType;
  16.                 NumberOfLocalDrives : WORD) : WORD;
  17.  
  18.   Changes the login directory of the requesting workstation.
  19. --------------------------------------------------------------------------------
  20. GetConnectionInformation (ConnectionNumber : WORD;
  21.                           VAR ObjectName : ObjectNameType;
  22.                           VAR ObjectType : OT_BinderyType;
  23.                           VAR ObjectID : OT_BinderyID;
  24.                           VAR LoginTime : Byte7ArrayType) : WORD;
  25.  
  26.   Returns information about the object logged in to a specified connection.
  27. --------------------------------------------------------------------------------
  28. GetConnectionNumber : WORD;
  29.  
  30.   Returns the connection number that the requesting workstation uses to
  31.   communicate with the default file server.
  32. --------------------------------------------------------------------------------
  33. GetInternetAddress (ConnectionNumber : WORD; VAR NetworkNumber : Byte4ArrayType;
  34.                     VAR PhysicalNodeAddress : Byte6ArrayType;
  35.                     VAR SocketNumber : WORD) : WORD;
  36.  
  37.   Returns a connection's internetwork address.
  38. --------------------------------------------------------------------------------
  39. GetObjectConnectionNumbers (ObjectName : ObjectNameType;
  40.                             ObjectType : OT_BinderyType;
  41.                             VAR NumberOfConnections : WORD;
  42.                             VAR ConnectionList : ConnectionListType;
  43.                             MaxConnections : WORD) : WORD;
  44.  
  45.   Returns a list of connection numbers that indicate how many times and under
  46.   what connection numbers a bindery object is logged in to the default file
  47.   server.
  48. --------------------------------------------------------------------------------
  49. GetStationAddress (VAR PhysicalNodeAddress : Byte6ArrayType);
  50.  
  51.   Returns the physical node address of the requesting workstation.
  52. --------------------------------------------------------------------------------
  53. LoginToFileServer (ObjectName : ObjectNameType; ObjectType : OT_BinderyType;
  54.                    ObjectPassword : PasswordType; ConnectionID : WORD) : WORD;
  55.  
  56.   Logs a bindery object in to the default file server.
  57. --------------------------------------------------------------------------------
  58. Logout
  59.  
  60.   Issues a network logout request to all connected file servers.
  61. --------------------------------------------------------------------------------
  62. LogoutFromFileServer (ConnectionID : WORD);
  63.  
  64.   Logs out the object but does not detach the workstation from the file server.
  65. --------------------------------------------------------------------------------
  66.